Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Latest commit

 

History

History
24 lines (17 loc) · 709 Bytes

2.1 - 函数列表.md

File metadata and controls

24 lines (17 loc) · 709 Bytes

函数列表

符号表示规则

  • class->function 对象方法
  • class::function 类静态方法
  • class->$var 对象属性
  • class::$var 类静态属性

上述规则仅用于文档编写,不代表实际PHP语法

类名简写规则

由于Swoole扩展提供的所有类均以Swoole作为命名空间,本文档在表示类名时不再添加Swoole顶层命名空间。

  • Swoole\Coroutine\Client将简化为Coroutine\Client
  • Swoole\Server简化为Server

在文档中未特殊说明的类名,均表示在Swoole命名空间内

其他函数

Server无关的函数已迁移至 其他 - 函数列表